#include using namespace std; class complex{ protected: double a, b; public: complex(double _a=0,double _b=0):a(_a),b(_b){ } complex operator +(complex &t){ return complex(a+t.a,b+t.b); } void show(){ cout<<"The complex is:"<